home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 50
/
Volume 50 - JOGO DISK .iso
/
Games
/
beautiful_princess.swf
/
scripts
/
frame_1
/
DoAction.as
Wrap
Text File
|
2007-09-26
|
568b
|
36 lines
function decoexe()
{
var k = 1;
while(k <= deconum)
{
if(k < 10)
{
k = "0" + k;
}
this["yojo_" + k].onPress = function()
{
btdown(this._name);
};
this["yojo_" + k].onRelease = function()
{
btup(this._name);
};
k++;
}
}
function btdown(name)
{
startDrag(name,0);
swnum++;
this[name].swapDepths(swnum);
this[name].depth = swnum;
deconame = name;
}
function btup(name)
{
stopDrag();
}
deconum = 100;
stop();
decoexe();